ISRO CSE 2015


Q51.

If n has 3, then the statement a[++n]=n++;
GateOverflow

Q52.

Suppose two jobs, each of which needs 10 minutes of CPU time, start simultaneously. Assume 50% I/O wait time. How long will it take for both to complete, if they run sequentially?
GateOverflow

Q53.

In a lottery scheduler with 40 tickets, how we will distribute the tickets among 4 processes P1,P2,P3 and P4 such that each process gets 10%, 5%, 60% and 25% respectively?
GateOverflow

Q54.

Consider the following program fragment if(a > b) if(b > c) s1; else s2;s2 will be executed if
GateOverflow

Q55.

A certain population of ALOHA users manages to generate 70 request/sec. If the time is slotted in units of 50 msec, then channel load would be
GateOverflow

Q56.

In CRC if the data unit is 100111001 and the divisor is 1011 then what is dividend at the receiver?
GateOverflow

Q57.

The boolean expression A B+A B^{\prime}+A^{\prime} C+A C is independent of the boolean variable
GateOverflow

Q58.

The complement of the Boolean expression A B(\bar{B} C+A C) is
GateOverflow

Q59.

Consider the following Relationship Entity Diagram(ERP)Which of the following possible relations will not hold if the above ERD is mapped into a relation model?
GateOverflow

Q60.

Consider the following code fragment void foo(int x, int y) { x+=y; y+=x; } main() { int x=5.5; foo(x,x); }What is the final value of x in both call by value and call by reference, respectively?
GateOverflow